go/ast.EmptyStmt.Semicolon (field)

6 uses

	go/ast (current package)
		ast.go#L642: 		Semicolon token.Pos // position of following ";"
		ast.go#L790: func (s *EmptyStmt) Pos() token.Pos      { return s.Semicolon }
		ast.go#L814: 		return s.Semicolon
		ast.go#L816: 	return s.Semicolon + 1 /* len(";") */

	go/parser
		parser.go#L2488: 		s = &ast.EmptyStmt{Semicolon: p.pos, Implicit: p.lit == "\n"}
		parser.go#L2492: 		s = &ast.EmptyStmt{Semicolon: p.pos, Implicit: true}